home *** CD-ROM | disk | FTP | other *** search
/ Amoszine 10 / Amoszine 10 (Disk 3 of 3).adf / Amos_Procs.lha / XKillZones.proc / XKillZones.amosSourceCode
Encoding:
AMOS Source Code  |  1991-12-03  |  169 b   |  7 lines

  1. Procedure XKILLZONES[X,Y]
  2.    ' By John Smit 
  3.    ' resets zones that are no longer required between values x and y  
  4.    For Z=X To Y
  5.       Reset Zone Z
  6.    Next Z
  7. End Proc